home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP 3.1 (Developer) [x86]
/
NeXT Step 3.1 Intel dev.cdr.dmg
/
NextDeveloper
/
Examples
/
AppKit
/
Draw
/
graphicsUndo.subproj
/
EndEditingGraphicsChange.h
< prev
next >
Wrap
Text File
|
1992-02-09
|
524b
|
22 lines
/*
* This change is created when the user finishes editing a text
* graphic. Undoing this change inserts the re-inserts the text
* editing cursor in the text. More significantly, undoing this
* change swaps the contents of the TextGraphic back into the
* field editor so that it is ready to edit.
*/
@interface EndEditingGraphicsChange : Change
{
id graphicView;
TextGraphic *graphic;
}
- initGraphicView:aGraphicView graphic:aGraphic;
- free;
- (const char *)changeName;
- undoChange;
- redoChange;
@end